home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / fp_fpcount.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  77 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7. # Added some extra checks. Axel Nennker axel@nennker.de
  8.  
  9. if(description)
  10. {
  11.  script_id(11370);
  12.  script_version ("$Revision: 1.2 $");
  13.  script_cve_id("CAN-1999-1376");
  14.  
  15.  name["english"] = "fpcount.exe overflow";
  16.  name["francais"] = "dΘpassement de buffer dans fpcount.exe";
  17.  
  18.  script_name(english:name["english"],
  19.          francais:name["francais"]);
  20.  
  21.  # Description
  22.  desc["english"] = "
  23. There might be a buffer overflow in the remote
  24. fpcount.exe cgi.
  25.  
  26. *** Nessus did not actually check for this flaw,
  27. *** but solely relied on the presence of this CGI
  28. *** instead
  29.  
  30. An attacker may use it to execute arbitrary code
  31. on this host.
  32.  
  33. Solution : delete it
  34. Risk factor : High";
  35.  
  36.  
  37.  script_description(english:desc["english"]);
  38.  
  39.  # Summary
  40.  summary["english"] = "Is fpcount.exe installed ?";
  41.  script_summary(english:summary["english"]);
  42.  
  43.  # Category
  44.  script_category(ACT_GATHER_INFO); 
  45.  
  46.  # Dependencie(s)
  47.  script_dependencie("find_service.nes", "no404.nasl");
  48.  
  49.  # Family
  50.  family["english"] = "CGI abuses";
  51.  family["francais"] = "Abus de CGI";
  52.  script_family(english:family["english"],
  53.             francais:family["francais"]);
  54.  
  55.  # Copyright
  56.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  57.            francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  58.  
  59.  script_require_ports("Services/www", 80);
  60.  exit(0);
  61. }
  62.  
  63. # The attack starts here
  64. include("http_func.inc");
  65. include("http_keepalive.inc");
  66.  
  67. port = get_http_port(default:80);
  68.  
  69.  
  70.  
  71. req = http_get(item:"/_vti_bin/fpcount.exe", port:port);
  72. res = http_keepalive_send_recv(port:port, data:req);
  73.  
  74. if( res == NULL ) exit(0);
  75. if(("Microsoft-IIS/4" >< res) && ("HTTP/1.1 502 Gateway" >< res) )
  76.     security_hole(port);
  77.